home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 23
/
Amiga Format AFCD23 (Feb 1998, Issue 107).iso
/
-seriously_amiga-
/
shareware
/
workbench
/
advent
/
install-advent
< prev
next >
Wrap
Text File
|
1997-12-01
|
962b
|
57 lines
; Protection Encryption System (PES) Main Install Script
; $VER: PES Install Script v1.00
(set @default-dest "SYS:")
; English language
(set #Adventdocs-location
(cat "Select location to put the Advent docs, a "
"directory will NOT be created."
))
(set #copying-files
(cat "Copying files..."
))
(set #help-askbool
(cat "Please select Yes to install the file(s) "
"or select No so they are not installed. "
))
;--------------------------------------------------
(set dest1 (askdir (prompt #Adventdocs-location)
(default @default-dest)
(help @askdir-help)
)
)
(set dest2 "Sys:WBStartup")
(set dest3 "S:")
(copyfiles
(source "Install/Bin/")
(dest dest2)
(choices "Advent_v1.00")
(infos)
(help @copyfiles-help)
)
(copyfiles
(source "Install/Data/")
(dest dest3)
(choices "Advent.gfx")
(infos)
(help @copyfiles-help)
)
(copyfiles
(source "Install/Docs/")
(dest dest1)
(choices "Advent-Doc")
(infos)
(help @copyfiles-help)
)